home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue54 / Persist / tiRegCtrls.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-01-07  |  1.4 KB  |  57 lines

  1. unit tiRegCtrls;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8. uses
  9.   Classes
  10.   ,tiButtonPanel
  11. //  ,tiTrayIcon
  12.   ,tiListView
  13. //  ,tiListViewPlus
  14.   ,tiTreeView
  15.   ,tiTreeViewPlus
  16. //  ,tiMultiSelct
  17.   ;
  18.  
  19.  
  20. {$R tiPatterns.dcr}
  21.  
  22.  
  23. //------------------------------------------------------------------------------
  24. procedure Register;
  25. begin
  26.   RegisterComponents( 'TechInsite',
  27.                       [
  28. //                         TtiDBGrid
  29. //                        ,TtiAbort
  30. //                        ,TtiPickPrinter
  31. //                        ,TtiPickDirectory
  32. //                        ,TtiPickFile
  33. //                        ,TtiEditMultiSelection
  34. //                        ,TtiAmuseUser
  35. //                        ,TtiHistoryComboBox
  36. //                        ,TtiToolBar
  37. //                        ,TtiIntegerEdit
  38. //                        ,TtiFloatEdit
  39. //                        ,TtiCurrencyEdit
  40. //                        ,TtiPercentEdit
  41. ////                        ,TtiDateEdit
  42. //                        ,TtiPickAlias
  43. //                        ,TtiDateRange
  44. //                        ,TtiMultiSelct
  45. //                        ,TtiTrayIcon
  46. //                        ,TtiClock
  47.                         TtiButtonPanel
  48.                         ,TtiListView
  49. //                        ,TtiListViewPlus
  50.                         ,TtiTreeView
  51.                         ,TtiTreeViewPlus
  52.                       ]) ;
  53.  
  54. end;
  55.  
  56. end.
  57.